<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Scroll Bar Master Styling Starts Here */
/* All comments can be freely removed from the css */

/*  scrollgeneric is used for corrective styling of elements, and should not be modified or removed */ 
.scrollgeneric {
line-height: 1px;
font-size: 1px;
position: absolute;
top: 0; left: 0;
}

.vscrollerbar {
width: 8px;
background:url(../images/gdt.png) no-repeat;
max-height:70px;
/* do not forget to put colors for backgrounds for before image(s) can load , this is more important for
the scrollbar itself than the scrollbase, as user can live without an image on the base but cannot see
any scrollbar when images cannot load. */
}


.vscrollerbase {
width: 8px;
background:url(../images/gdt_bg.png) repeat-y;
}



/* do not forget to give horizontal scrollbars some color properties even if you don't plan on using them */

.vscrollerbar, .hscrollerbar {
/* paddings of these elements will decide how far the scrollbar will stop in both ends, and are not actually
used for styling, and are set to 0 by the script, here we will set them the size of our faux arrows */
padding: 8px;
z-index: 2;

}

/* properties for scroller jog box, just in case */
.scrollerjogbox {
width: 8px;
height: 8px;
top: auto; left: auto;
bottom: 0px; right: 0px;
background: #37917A;
display:none;
}


/* Scroll Bar Master Styling Ends Here */
</pre></body></html>